home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH05_2.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  347b  |  33 lines

  1. #include "stdio.h"
  2.  
  3. writename()
  4. {
  5.    printf("John Q. Doe\n");
  6. }
  7.  
  8.  
  9. void main()
  10. {
  11. int index;
  12.  
  13.    for(index = 0 ; index < 10 ; index = index + 1)
  14.       writename();
  15. }
  16.  
  17.  
  18.  
  19. /* Result of execution
  20.  
  21. John Q. Doe
  22. John Q. Doe
  23. John Q. Doe
  24. John Q. Doe
  25. John Q. Doe
  26. John Q. Doe
  27. John Q. Doe
  28. John Q. Doe
  29. John Q. Doe
  30. John Q. Doe
  31.  
  32. */
  33.